home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / General / GCC 1.37.1r15 / Tests / bug-strs.c < prev    next >
Text File  |  1992-12-15  |  302b  |  32 lines

  1.  
  2. int Fred()
  3. {
  4.     return 1;
  5. }
  6.  
  7. char *GnuDeath()
  8. {
  9.     int i=0;
  10.     
  11.     i += 1;
  12. {
  13. char *myString[] = {
  14.     "This is",
  15.     "Some real",
  16.     "ßhit stuff"
  17. };
  18.  
  19. return myString[1];
  20. }
  21.  
  22. }
  23.  
  24. /*
  25. ** This works with MPW, but fails with GNU
  26. * The -b option seems to be giving GNU fits.
  27.  
  28. gc -b "gnu death 4" -asm
  29. asm "gnu death 4.a"
  30.  
  31. */
  32.